home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Format 1994 October
/
Macformat17.cdr
/
Shareware City
/
Developers
/
GAL ƒ
/
GAL examples
/
nested subs w local vbl
< prev
next >
Wrap
Text File
|
1994-07-11
|
245b
|
19 lines
; subroutines don't do much but do show nesting ability
begin_code
jump:sub first
halt
first
jump:sub second
return
end_code
begin_data
local constant 5,15
end_data
begin_code
second
jump:sub third
return
third
return
end_code
end